home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Sep / di9809am / Compont / Sample2 / Project1.dpr next >
Text File  |  1998-06-15  |  246b  |  15 lines

  1. {$DEFINE Tapi_Ver14}
  2. program Project1;
  3.  
  4. uses
  5.   Forms,
  6.   TapiForm in 'TapiForm.pas' {TapiCallManager};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TTapiCallManager, TapiCallManager);
  13.   Application.Run;
  14. end.
  15.